Mega Code Archive

Categories
1) Android
2) ASP.Net
3) ASP.Net Tutorial
4) C
5) C Tutorial
6) C#
7) C# Book
8) C# by API
9) C# Tutorial
10) C++
11) C++ Tutorial
12) Delphi
13) Flash ActionScript
14) Flex
15) Java
16) Java Book
17) Java by API
18) Java Tutorial
19) JavaScript DHTML
20) JavaScript Reference
21) JavaScript Tutorial
22) MSOfficeExcel 2007 Tutorial
23) MSOfficePowerPoint 2007 Tutorial
24) MSOfficeWord 2007 Tutorial
25) MSSQL
26) MSSQL Tutorial
27) MySQL
28) MySQL Tutorial
29) Oracle PLSQL
30) Oracle PLSQL Tutorial
31) Perl
32) Php
33) PostgreSQL
34) Python
35) Python Tutorial
36) Ruby
37) Silverlight
38) VB.Net
39) VB.Net by API
40) VB.Net Tutorial
41) Visual C++ .NET
42) VisualBasic Script
43) XML
44) XML Tutorial
 
C++ Tutorial
1) Array
2) Bitset
3) Class
4) Data Types
5) Deque
6) Development
7) Exceptions
8) File Stream
9) Function
10) Language Basics
11) List
12) Map Multimap
13) Operator Overloading
14) Operators Statements
15) Pointer
16) Queue Stack
17) Set Multiset
18) STL Algorithms Binary Search
19) STL Algorithms Heap
20) STL Algorithms Helper
21) STL Algorithms Iterator
22) STL Algorithms Merge
23) STL Algorithms Min Max
24) STL Algorithms Modifying Sequence Operations
25) STL Algorithms Non Modifying Sequence Operations
26) STL Algorithms Sorting
27) STL Introduction
28) String
29) Structure
30) Template
31) Valarray
32) Vector
Language Basics
1) A C++ program begins at main()
2) A namespace
3) A nested namespace
4) A scoping example
5) A static local variable causes the compiler to create permanent storage for it in much the same way that it does for a glo
6) Assign value to a variable
7) Bring only a few names into the global namespace
8) Calculating with integer constants
9) Call a function in main
10) Comparing data values
11) Const double value
12) C-style and C++ style comments
13) Define constant
14) Demonstrate mutable
15) Demonstrates constants
16) Demonstrating storage-class specifier mutable
17) Demonstrating the const type qualifier
18) Dynamic initialization
19) Finding maximum and minimum values for data types
20) Function in a namespace reference variables in the same namespace
21) Global and block scope
22) Global class variable
23) Global variables across functions
24) Global variables are known throughout the entire program and may be used by any piece of code
25) Initialize static member field outside the class declaration
26) Inner block variable scope
27) Link as a C function
28) Names in inner scopes can hide names in outer scopes
29) Reference global variable, variable in the nested namespace
30) Reference variables in namespaces
31) Reuse namespace
32) Same Program Using Constant Integers
33) Scope code block
34) This is a simple C++ program
35) Use
36) Use a global variable
37) Use a namespace
38) Use explicit std
39) Use function defined in a namespace
40) Use function in an expression
41) Use namespace std
42) Use Namespace to organize functions
43) Use static variable to compute a running average of numbers entered by the user
44) Use the using keyword
45) Using a properly initialized constant variable
46) Using a static long variable
47) Using namespace aliases
48) Using namespace in program block
49) Using namespace std
50) Using the assignment operator
51) Using the scope resolution operator
52) Using the scope resolution operator (2)
53) Using the unary scope resolution operator
54) Using the using directive
55) Using unnamed namespaces
56) Variable block scope
57) Variable size
58) Variables can be local to a block
59) Working with integer variables